home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Sound / MusicIn / subs.c < prev    next >
C/C++ Source or Header  |  1997-09-23  |  1KB  |  33 lines

  1. /**********************************************************************
  2. Copyright (c) 1991 MPEG/audio software simulation group, All Rights Reserved
  3. subs.c
  4. **********************************************************************/
  5. /**********************************************************************
  6.  * MPEG/audio coding/decoding software, work in progress          *
  7.  *   NOT for public distribution until verified and approved by the   *
  8.  *   MPEG/audio committee.  For further information, please contact   *
  9.  *   Davis Pan, 508-493-2241, e-mail: pan@3d.enet.dec.com          *
  10.  *                                      *
  11.  * VERSION 3.9                                  *
  12.  *   changes made since last update:                      *
  13.  *   date   programmers     comment                   *
  14.  * 2/25/91  Davis Pan        start of version 1.0 records          *
  15.  * 5/10/91  W. Joseph Carter    Ported to Macintosh and Unix.          *
  16.  * 7/10/91  Earle Jennings    Ported to MsDos from Macintosh          *
  17.  *                Replacement of one float with FLOAT   *
  18.  * 2/11/92  W. Joseph Carter    Added type casting to memset() args.  *
  19.  * 4/27/92  Masahiro Iwadare    Added 256 point version for Layer III *
  20.  **********************************************************************/
  21.  
  22. #include "common.h"
  23. #include "encoder.h"
  24.  
  25. #include "FastFT_float.h"
  26.  
  27.  
  28. void fft( FLOAT *x_real, FLOAT *x_imag, FLOAT *energy, FLOAT *phi, int N )
  29. {
  30.    FastFT_FLOAT_forward( x_real, x_imag, energy, phi, N );
  31. }
  32.  
  33.